
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body{
    width: 100%;
    background: #fafafa;
    position: relative;
}

.navbar
{
  height: 54px;
  background-color: #ffff;
}

.logo
{
    margin-left: auto;
    margin-right: auto;
}

.middleare
{
  max-height: 200px !important ;
}

.main
{
  width: 100%;
  padding: 10px 0;
  margin-top: 20px;
}

.wrapper{
  width: 100%;
  max-width: 1000px;

  grid-template-columns: 60% 40%;
  grid-gap: 30px;
}
.left-col{
  display: flex;
  flex-direction: column;
}
.status-wrapper
{
  width: 100%;
  height: 130px;
  background: #ffff;
  border: 1px solid #dfdfdf;
  border-radius: 6px;
  padding: 10px;
  padding-right: 0;
  display: flex;
  align-items: center;
overflow: hidden;
overflow-x: auto;
}

.status-wrapper::-webkit-scrollbar{
    display: none;
}

.status-card{
  flex: 0 0 auto;
  width: 45px;
  max-width: 80px;
  display: flex;
  flex-direction:column;
  align-items: center;
  margin-right: 40px;
}
.profile-pic{
  width: 75px;
  height: 75px;
  border-radius: 50%;
  overflow: hidden;
  padding: 2px;
  background: linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.profile-pic img{
    width: 100%;
    height: 100%;
    object-fit:cover;
    border-radius: 50%;
    border: 2px solid #ffff ;
}

.kullanıcı-adı
{
    width: 100%;
    overflow-x: hidden;
    white-space: nowrap;
    text-decoration: none;
    text-overflow: ellipsis;
    text-align: center;
    font-size: 11px;
    margin-top: 1px;
    color: rgba(0, 0, 0, 0.856);
}

::placeholder{
  text-align: center;
  font-size: 14px;
  color: gray;
  background-position: 40%;
  background-size: 6%;
  background-repeat: no-repeat;
  background-position: left;
}

input.empty {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    background-color: #FAFAFA;
}

.postuserfont {
  font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 15px;
  color: black;
}

.rightpanel{
  background-color: #FAFAFA;
  border: none;
}
.rightpanellinks {
  text-decoration: none;
  color: lightgrey;
}

.rightpanellinks:hover {
  text-decoration: none;
  color: lightgrey;
}

#sticky-sidebar{
    position: fixed;
}

